home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SOLAR / Vector Generators / Fourier Synthesis / gen-fourier next >
Text File  |  1998-10-23  |  535b  |  10 lines

  1. gen-fourier freq-list/vector amp-list/vector phase-list/vector samples
  2.  
  3. Generates a sum of sinewave frequencies expressed in a freq-list/vector, whose corresponding amplitudes are expressed in a amp-list/vector and the phases in phase-list/vector. An amp-list/vector entry can be a value or a vector, if more specific contours of each frequency are needed.
  4.  
  5. (gen-fourier 
  6.    '(1 2 3) ; frequencies 1, 2 and 3
  7.    '(1 0.5 (gen-sin 10 1 64)) ; amplitudes - also contours allowed
  8.    '(0 45 90) ; initial phases
  9.    512) ; number of samples
  10.